home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 15 / BBS in a box XV-2.iso / Files II / QuickTime / QT Tools / QuickTime Interfacing.sit / QuickTime Interfacing / SeeMovieRun folder / sources / SeeMovieRun.c < prev   
Encoding:
C/C++ Source or Header  |  1992-07-19  |  538 b   |  28 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  
  3.   SeeMovieRun.c
  4.  
  5.      A starter main file for writing QuickTime literate programs with the
  6.      THINK Class Library
  7.  
  8.   Copyright © 1992 Joe Zobkiw.  All rights reserved.
  9.   Portions Copyright © 1990 Symantec Corporation.  All rights reserved.
  10.  
  11. ******************************************************************************/
  12.  
  13.  
  14. #include "CQTApp.h"
  15.  
  16. void main()
  17.  
  18. {
  19.     CQTApp    *QTApp;                    
  20.     
  21.     QTApp = new CQTApp;
  22.     
  23.     QTApp->IQTApp();
  24.     
  25.     QTApp->Run();
  26.     QTApp->Exit();
  27. }
  28.